#include #include using namespace std; int main() { string salsa_name[7]={"mild","medium","hot","sweet","fruit","verde","zesty"}; int jar_sale[7]={0,0,0,0,0,0,0}; int i; int total=0; int high=0; int high_index=0; int low=0; int low_index=0; int temp=0; for(i=0;i<7;i++) { while(temp<=0) { cout<<"enter the number of jars sold for "<>temp; if(temp<=0) cout<<"invalid data. please try again\n"; } jar_sale[i]=temp; temp=0; } cout<<"name\t jars sold\n"; cout<<"\n---------------------------\n"; for(i=0;i<7;i++) { cout<<" "<= high) { high_index=i; high=jar_sale[i]; } if(jar_sale[i]<=low) { low_index=i; low=jar_sale[i]; } } cout<<"\n total sale : "<